JavaScript

{grid.object}submitDetailView Method

Syntax

{grid.object}.submitDetailView([newRecord as Boolean]);

Arguments

newRecordBoolean

If true, a new record will be shown after the record is saved.

Description

Submit the Detail View part to commit any edits that were made to the record shown in the Detail View.

{grid.Object}.submitDetailView();

If you supply an optional argument of true, then the record is saved and a new record is shown. This allows you to do continuous data entry.

//Submit the detail view and then immediately start entering a new record
{grid.Object}.submitDetailView(true);

See Also